home *** CD-ROM | disk | FTP | other *** search
/ How Would You Survive? / How Would You Survive (1995)(Grolier)[Mac-PC].iso / mac / SHARED.DIR / 01944_Script_previous < prev    next >
Text File  |  1995-09-13  |  523b  |  35 lines

  1. global gWhatMovie,gLastMarker
  2.  
  3. on PreviousM
  4.   if gWhatMovie = "VTheatre" then
  5.     PreviousV
  6.   else
  7.     if gWhatMovie = "ETheatre" then
  8.       PreviousE
  9.     else
  10.       if gWhatMovie = "ATheatre" then
  11.         PreviousA
  12.       end if
  13.     end if
  14.   end if
  15. end
  16.  
  17.  
  18. on PreviousV
  19.   sound stop 2
  20.   go to frame gLastMarker of movie "VikingW"
  21. end
  22.  
  23. on PreviousE
  24.   sound stop 2
  25.   go to frame gLastMarker of movie "EgyptW"
  26. end
  27.  
  28. on PreviousA
  29.   sound stop 2
  30.   go to frame gLastMarker of movie "AztecW"
  31. end
  32.  
  33.  
  34.  
  35.